home *** CD-ROM | disk | FTP | other *** search
/ How Would You Survive? / How Would You Survive (1995)(Grolier)[Mac-PC].iso / mac / EGAME.DIR / 00342_Script_342 < prev    next >
Text File  |  1995-09-06  |  347b  |  17 lines

  1. on fixnames 
  2.   global gName
  3.   repeat with x=179 to 328
  4.     if (x mod 3)=2 then
  5.       set gName=the name of cast x
  6.     end if
  7.     set y=gname
  8.     if x mod 3=0 then
  9.       set the name of cast x=gName&"Hilite"
  10.     else
  11.       if x mod 3=1 then
  12.         set the name of cast x=gName&"depressed"
  13.       end if
  14.     end if
  15.   end repeat
  16. end 
  17.